/******************************************************************************* * Copyright (c) 2005, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.ui.tests.datatransfer; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.wizard.Wizard; import org.eclipse.ui.IImportWizard; import org.eclipse.ui.IWorkbench; public class TestImportWizard extends Wizard implements IImportWizard { public TestImportWizard() { super(); } @Override public boolean performFinish() { // TODO Auto-generated method stub return false; } @Override public void init(IWorkbench workbench, IStructuredSelection selection) { // TODO Auto-generated method stub } }